home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / BackDepLib1.cp < prev    next >
Encoding:
Text File  |  1996-11-19  |  424 b   |  40 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        BackDepLib1.cp
  3.  
  4.     Contains:    Test for having a library with a dependency on a library
  5.                 that is dependent on it.
  6.  
  7.     Copyright:    © 1992-1993 by Apple Computer, Inc., all rights reserved.
  8.  
  9. */
  10.  
  11. #ifndef __BACKDEPLIB__
  12. #include "BackDepLib.h"
  13. #endif
  14.  
  15. TBackDep1::TBackDep1()
  16. {
  17. }
  18.  
  19. TBackDep1::~TBackDep1()
  20. {
  21. }
  22.  
  23. void TBackDep1::Foo()
  24. {
  25. }
  26.  
  27.  
  28. TBackDep3::TBackDep3()
  29. {
  30. }
  31.  
  32. TBackDep3::~TBackDep3()
  33. {
  34. }
  35.  
  36. void TBackDep3::Foo()
  37. {
  38. }
  39.  
  40.